home *** CD-ROM | disk | FTP | other *** search
/ BCI NET / BCI NET Dec 94.iso / archives / programming / c / gcc222-2.lha / gcc_include / sys / ioctl.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-10-24  |  762 b   |  43 lines

  1. /* sys/ioctl.h include file for ansic.library */
  2. /* Copyright (C) 1992 - Davide Pasetto */
  3.  
  4. #ifndef __SYS_IOCTL__
  5. #define __SYS_IOCTL__
  6.  
  7. struct tchars {
  8.   char t_intrc;
  9.   char t_quit;
  10.   char t_startc;
  11.   char t_stopc;
  12.   char t_eofc;
  13.   char t_brkc;
  14. };
  15.  
  16. #define LCRTBS   000001
  17. #define LPRTERA  000002
  18. #define LCRTERA  000004
  19. #define LTILDE   000010
  20. #define LMDMBUF  000020
  21. #define LLITOUT  000040
  22. #define LTOSTOP  000100
  23. #define LFLUSHO  000200
  24. #define LNOHANG  000400
  25. #define LETXACK  001000
  26. #define LCRTKIL  002000
  27. #define LINTRUP  004000
  28. #define LCTLECH  010000
  29. #define LPENDIN  020000
  30. #define LDECCTQ  040000
  31.  
  32.  
  33. struct lchars {
  34.   char t_suspc;
  35.   char t_dstopc;
  36.   char t_rprntc;
  37.   char t_flushc;
  38.   char t_werasec;
  39.   char t_lnextc;
  40. };
  41.  
  42. #endif /* __SYS_IOCTL__ */
  43.